Answers for "if string contains 2 space back to back in php"

PHP
0

check if string contains only whitespace php

ctype_space("  ") //returns true

ctype_space("   a   ") //returns false
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language