テスト

モジュールコピー

copy Release_TS\php_sample.dll c:\php\php_sample.dll
 

テスト用スクリプト

<?php
	// 存在する場合は読み込み
	if(!extension_loaded('sample')) {
		dl('php_sample.' . PHP_SHLIB_SUFFIX);
	}
	// メソッド実行
	helloworld();
?>
 

結果確認

>c:\php\php.exe -q sample.php
Hello World
 
>
 


最終更新:2012年08月26日 09:19