"Deprecated: Function split() is deprecated"의 두 판 사이의 차이

(새 문서: ;<nowiki>Deprecated: Function split() is deprecated</nowiki> ==예제 1== <source lang='php'> <?php $passwd_line = "root:x:0:0:root:/root:/bin/bash"; list($user, $pass, $uid, $gid, $...)
 
12번째 줄: 12번째 줄:
==같이 보기==
==같이 보기==
*[[/etc/passwd]]
*[[/etc/passwd]]
==참고 자료==
*http://www.php.net/manual/en/function.split.php


[[분류: PHP]]
[[분류: PHP]]

2013년 12월 17일 (화) 13:58 판

Deprecated: Function split() is deprecated

1 예제 1

<?php
$passwd_line = "root:x:0:0:root:/root:/bin/bash";
list($user, $pass, $uid, $gid, $extra) = split(":", $passwd_line, 5);
echo "user=[$user], pass=[$pass], uid=[$uid], gid=[$gid], extra=[$extra]";
// user=[root], pass=[x], uid=[0], gid=[0], extra=[root:/root:/bin/bash]

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}