All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
小结:PHP动态网页程序两个有用的小技巧_php资料_编程技术

Writer: aaa Article type: Programming skills(编程技巧) Time: 2013/12/27 20:04:50 Browse times: 386 Comment times: 0

小结:PHP动态网页程序两个有用的小技巧_php资料_编程技术


Head photo

Go homepage
Upload pictures
Write articles

小结:PHP动态网页程序两个有用的小技巧_php资料_编程技术-你的首页-uuhomepage.com

主要是在开发或学习中的一些经验技巧进行总结,主要就是把解决某种事情更好的方法告诉大家.

1,假如你使用echo输出一个简单的语句,类似与:

echo "Hello World!";
?>

那么你可以偷懒一下,写成这样:

2,str_replace()可以使用数组进行替换,比如:

$string = "Welcome To The PHPCHINA.COM ,Have A Good Time.";
$search = array("Welcome To The PHPCHINA.COM", "Have A Good Time", ".");
$replace = array("PHP is very Good", "I Like It", "!");
$newstring = str_replace($search, $replace, $string);
echo $string."
";
echo $newstring;
?>






There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.