Possible Duplicate:
How can I use C++ code to interact with PHP?PHP&のでエラー:クラス
を見つけていない私は、次のtest.phpをファイルがあります。test.hppファイル
<html>
<head>
<title>Personalized Hello World</title>
</head>
<body>
<?php include "/home/test.hpp";
$s= new example();
?>
</body>
</html>
は次のとおりです。
#ifndef TEST_
#define TEST_
class example
{
public:
example();
void show();
};
#endif
私がテストを持っています.soファイル。 私はphpのコンパイル:
PHP Fatal error: Class 'example' not found in /var/www/test.php on line 10
これを解決する方法:私はエラーが発生しているphp test.php -dextension=test.so
? THX
私はあなたがちょうどそのようなPHPコードでC++コードを 'include'できるとは思いません。 –
あなたがしていることが可能なら、それは素晴らしいです! – xdazz