Vim で PHP 関数の辞書を作成する方法についてのメモ
http://www.asahi-net.or.jp/~wv7y-kmr/memo/vim_php.html
<?php
$functions = get_defined_functions();
sort( $functions['internal'] );
echo implode( "\n", $functions['internal'] );
?>
http://www.asahi-net.or.jp/~wv7y-kmr/memo/vim_php.html
<?php
$functions = get_defined_functions();
sort( $functions['internal'] );
echo implode( "\n", $functions['internal'] );
?>
2004-10-20-3: [PHP]
- PHP PEAR パッケージ
http://kamakura.cool.ne.jp/oppama/oswa/phppeardb.html
http://gmail-lite.sourceforge.net/
- スクーンショット
http://gmail-lite.sourceforge.net/ss/screenshots.html
array($this, 'callback')
がポイント.
<?php
class foo {
function bar() {
print preg_replace_callback($pattern, array($this, 'callback'), $string);
}
function callback($matches) {
return ...;
}
}
?>
2004-09-21-3: [PHP]
http://www.matsubarafamily.com/blog/mbemu.php
mbstring をサポートしていないサーバに