(→예제 1) |
Jmnote bot (토론 | 기여) 잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight)) |
||
(사용자 2명의 중간 판 7개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
==개요== | |||
;<nowiki>Deprecated: Function split() is deprecated</nowiki> | ;<nowiki>Deprecated: Function split() is deprecated</nowiki> | ||
*split함수는 5.3.0부터 [[deprecated]] | |||
*[[explode]] 또는 [[preg_split]]으로 전환해야 함 | |||
==예제 1== | ==예제 1== | ||
;수정 전 | ;수정 전 | ||
< | <syntaxhighlight lang='php'> | ||
<?php | <?php | ||
$passwd_line = "root:x:0:0:root:/root:/bin/bash"; | $passwd_line = "root:x:0:0:root:/root:/bin/bash"; | ||
10번째 줄: | 13번째 줄: | ||
// Deprecated: Function split() is deprecated in /var/www/html/php/split1.php on line 3 | // Deprecated: Function split() is deprecated in /var/www/html/php/split1.php on line 3 | ||
// user=[root], pass=[x], uid=[0], gid=[0], extra=[root:/root:/bin/bash] | // user=[root], pass=[x], uid=[0], gid=[0], extra=[root:/root:/bin/bash] | ||
</ | </syntaxhighlight> | ||
;수정 후 | ;수정 후 | ||
< | <syntaxhighlight lang='php'> | ||
<?php | <?php | ||
$passwd_line = "root:x:0:0:root:/root:/bin/bash"; | $passwd_line = "root:x:0:0:root:/root:/bin/bash"; | ||
18번째 줄: | 21번째 줄: | ||
echo "user=[$user], pass=[$pass], uid=[$uid], gid=[$gid], extra=[$extra]"; | echo "user=[$user], pass=[$pass], uid=[$uid], gid=[$gid], extra=[$extra]"; | ||
// user=[root], pass=[x], uid=[0], gid=[0], extra=[root:/root:/bin/bash] | // user=[root], pass=[x], uid=[0], gid=[0], extra=[root:/root:/bin/bash] | ||
</ | </syntaxhighlight> | ||
==예제 2== | ==예제 2== | ||
;수정 전 | ;수정 전 | ||
< | <syntaxhighlight lang='php'> | ||
<?php | <?php | ||
$date1 = "04/30/1973"; | $date1 = "04/30/1973"; | ||
39번째 줄: | 42번째 줄: | ||
// Month: 04; Day: 30; Year: 1973 | // Month: 04; Day: 30; Year: 1973 | ||
// Month: 04; Day: 30; Year: 1973 | // Month: 04; Day: 30; Year: 1973 | ||
</ | </syntaxhighlight> | ||
;수정 후 | ;수정 후 | ||
< | <syntaxhighlight lang='php'> | ||
<?php | <?php | ||
$date1 = "04/30/1973"; | $date1 = "04/30/1973"; | ||
55번째 줄: | 58번째 줄: | ||
// Month: 04; Day: 30; Year: 1973 | // Month: 04; Day: 30; Year: 1973 | ||
// Month: 04; Day: 30; Year: 1973 | // Month: 04; Day: 30; Year: 1973 | ||
</ | </syntaxhighlight> | ||
==같이 보기== | ==같이 보기== | ||
*[[/etc/passwd]] | *[[/etc/passwd]] | ||
*[[explode]] | |||
*[[preg_split]] | |||
==참고 | ==참고== | ||
*http://www.php.net/manual/en/function.split.php | *http://www.php.net/manual/en/function.split.php | ||
[[분류: PHP]] | [[분류: PHP]] | ||
[[분류: Deprecated]] |
2020년 11월 2일 (월) 02:34 기준 최신판
1 개요[ | ]
- Deprecated: Function split() is deprecated
- split함수는 5.3.0부터 deprecated
- explode 또는 preg_split으로 전환해야 함
2 예제 1[ | ]
- 수정 전
PHP
Copy
<?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]";
// Deprecated: Function split() is deprecated in /var/www/html/php/split1.php on line 3
// user=[root], pass=[x], uid=[0], gid=[0], extra=[root:/root:/bin/bash]
- 수정 후
PHP
Copy
<?php
$passwd_line = "root:x:0:0:root:/root:/bin/bash";
list($user, $pass, $uid, $gid, $extra) = explode(":", $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]
3 예제 2[ | ]
- 수정 전
PHP
Copy
<?php
$date1 = "04/30/1973";
$date2 = "04-30-1973";
$date2 = "04.30.1973";
list($month1, $day1, $year1) = split('[/.-]', $date1);
list($month2, $day2, $year2) = split('[/.-]', $date2);
list($month3, $day3, $year3) = split('[/.-]', $date2);
echo "Month: $month1; Day: $day1; Year: $year1<br />\n";
echo "Month: $month2; Day: $day2; Year: $year2<br />\n";
echo "Month: $month3; Day: $day3; Year: $year3<br />\n";
// Deprecated: Function split() is deprecated in /var/www/html/php/split2.php on line 5
// Deprecated: Function split() is deprecated in /var/www/html/php/split2.php on line 6
// Deprecated: Function split() is deprecated in /var/www/html/php/split2.php on line 7
// Month: 04; Day: 30; Year: 1973
// Month: 04; Day: 30; Year: 1973
// Month: 04; Day: 30; Year: 1973
- 수정 후
PHP
Copy
<?php
$date1 = "04/30/1973";
$date2 = "04-30-1973";
$date3 = "04.30.1973";
list($month1, $day1, $year1) = preg_split('/[\/\.-]/', $date1);
list($month2, $day2, $year2) = preg_split('/[\/\.-]/', $date2);
list($month3, $day3, $year3) = preg_split('/[\/\.-]/', $date3);
echo "Month: $month1; Day: $day1; Year: $year1<br />\n";
echo "Month: $month2; Day: $day2; Year: $year2<br />\n";
echo "Month: $month3; Day: $day3; Year: $year3<br />\n";
// Month: 04; Day: 30; Year: 1973
// Month: 04; Day: 30; Year: 1973
// Month: 04; Day: 30; Year: 1973
4 같이 보기[ | ]
5 참고[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.