Home > php教程 > php手册 > body text

PHP常用实用函数

WBOY
Release: 2016-06-13 10:48:06
Original
899 people have browsed it

1. 对于foreach其实 用$key=>$value和$i => $g 是效果一样的,并不仅限于key value

echo "
\n"; 

$arr = array("one", "two", "three"); 

foreach ($arr as $i => $g) { 

echo "Key: $i; Value: $g
\n"; 

?> 

2. array_fill ()函数

用给定的值填充数组

$a = array_fill(5, 6, 'banana'); 

print_r($a); 

?> 

输出:

Array ( [5] => banana [6] => banana [7] => banana [8] => banana [9] => banana [10] => banana )

 

3. 打印数组(PHP模式和JSON模式)

$data = array( 

'firstname'=>'Tom', 

'lastname'=>'Smith', 

'age'=>40 

);   

print_r($data); 

echo json_encode($data); 

输出:

Array ( [firstname] => Tom [lastname] => Smith [age] => 40 )

{"firstname":"Tom","lastname":"Smith","age":40}

4. print_r($data,true);这样才可以把数组写到日志里www.2cto.com

$a =  array ("a", "b", "c");
$c= print_r($a,true);

$logfile  = "t.txt";

error_log("{$c}\r\n\r\n",3,$logfile);

摘自 河大李信的 Crazy Coding人生

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!