In which case is the insensitive version
strpos(field', 'Phrase')
in facebook query language?
Your closest bet would be to convert both phrases to lower case (or upper case) for comparison:
strpos(lower(field),lower(phrase))
Try stripos case insensitive strpos
http://ca3.php.net/stripos
Source: https://habr.com/ru/post/1764785/More articles:Scheme / Racket: Make an Evaluation Cycle - order-of-evaluationdoto and setting the property conditionally - clojureAttempting to perform a hierarchical update results in the error "Foreign key value cannot be inserted" - c #The problem of positioning a banner on top of my UITableView - objective-cPython: spwn or thread for a lengthy background process? - pythonColor on VideoView - androidHow can I resize my view? - objective-cUsing mysql_insert_id to insert a lot of data - phpJQuery UI: button on dynamically created elements - javascriptIs HTML rendering different between different versions of windows? - htmlAll Articles