菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码
运行
保存
<html> <body> <?php echo substr_compare("Hello world","Hello world",0); ?> <p>If this function returns 0, the two strings are equal.</p> </body> </html>
运行结果
<!DOCTYPE html> <html> <body> 0 <p>If this function returns 0, the two strings are equal.</p> </body> </html>