标签: php
如何检测php var中是否有句点.?
.
答案 0 :(得分:6)
if (strpos($variable_to_search, ".") !== FALSE) { // The variable contains a period. }