関数 wp_basename()
2014/12/11
関数 wp_basename()
定義ファイル :/blog/wp-includes/formatting.php 8
1 2 3 | function wp_basename( $path, $suffix = '' ) { return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) ); } |
WEBシステム SI屋の代表のブログです。
2014/12/11
1 2 3 | function wp_basename( $path, $suffix = '' ) { return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) ); } |