When are infinite loops are useful in PHP?

后端 未结 12 929
日久生厌
日久生厌 2020-12-09 21:17

While reading through the great online PHP tutorials of Paul Hudson he said

Perhaps surprisingly, infinite loops can sometimes be h

12条回答
  •  旧时难觅i
    2020-12-09 22:08

    For user input...

    while True:
        input = get_input_from_user("Do you want to continue? ")
        if input not in ("yes", "y", "no", "n"):
            print "invalid input!"
        else: 
            break
    

提交回复
热议问题