"함수 lastIndexOf()"의 두 판 사이의 차이

23번째 줄: 23번째 줄:
var_dump( $n );
var_dump( $n );
# int(24)
# int(24)
</source>
<source lang='PHP'>
$str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
$n = strrpos($str, "친구");
var_dump( $n );
# int(47)
</source>
</source>

2016년 12월 2일 (금) 17:02 판

1 JavaScript

var url = "http://example.com/wiki/http-server";
var n = url.lastIndexOf("http");
console.log( n );
// 24
var str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
var n = str.lastIndexOf("친구");
console.log( n );
// 21

2 PHP

$url = "http://example.com/wiki/http-server";
$n = strrpos($url, "http");
var_dump( $n );
# int(24)
$str = "친구야, 안녕! 너는 나의 가장 좋은 친구야.";
$n = strrpos($str, "친구");
var_dump( $n );
# int(47)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}