1): echo $name." contains ".$pan; else: echo $name." does not contain ".$pan; endif; ?>"/> 1): echo $name." contains ".$pan; else: echo $name." does not contain ".$pan; endif; ?>">

Home >Backend Development >PHP Tutorial >How to convert integer to string in PHP to determine if a string contains another string

How to convert integer to string in PHP to determine if a string contains another string

WBOY
WBOYOriginal
2016-07-29 08:36:481234browse

$name = "001x.gif";
$pan = "x";
$con = explode($pan,$name);
if (count($con)>1):
echo $name." contains ".$pan;
else:
echo $name." does not contain ".$pan;
endif;
?>

The above introduces the method of converting integer to string in PHP to determine whether a string contains another string, including the content of converting integer to string. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn