非常に単純な PHP 拡張機能を作成しました。起動時にファイルを読み込むようになりました。これが私のコードです:
#define PHP_COMPILER_ID "VC6"
#include <fstream>
#include "php.h"
int number = 0;
ZEND_FUNCTION(use_html);
//declaration
ZEND_MINIT_FUNCTION(use_html);
zend_function_entry use_functions[] =
{
ZEND_FE(use_html, NULL)
{NULL, NULL, NULL}
};
zend_module_entry use_html_module_entry =
{
STANDARD_MODULE_HEADER,
"First_Extension",
use_functions,
ZEND_MINIT(use_html),
NULL, NULL, NULL, NULL,
"1.0.0-tutorial",
STANDARD_MODULE_PROPERTIES
};
ZEND_GET_MODULE(use_html);
ZEND_FUNCTION(use_html)
{
bool useHtml;
if(zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &useHtml) == FAILURE)
{
E_ERROR;
return;
}
if(useHtml)
{
php_printf("This string uses <a href='#'>Html</a>");
}
else
{
int sum = 0;
int i = 0;
for(i;i<100000;i++)
sum += i;
RETURN_LONG(number);
}
return;
}
ZEND_MINIT_FUNCTION(use_html)
{
std::ifstream infile("file.txt");
number++;
return SUCCESS;
}
エラー メッセージは次のとおりです。 エラー 5 エラー C2491: 'std::endl': dllimport 関数の定義は許可されていません c:\program files\microsoft visual studio 10.0\vc\include\ostream 1004 1 php_extension1
インクルードの順序も変更しようとしましたが、役に立ちませんでした。
編集
これがostreamの問題のある部分です
_CRTIMP2_PURE inline basic_ostream<char, char_traits<char> >&
__CLRCALL_OR_CDECL endl(basic_ostream<char, char_traits<char> >& _Ostr)
{ // insert newline and flush byte stream
_Ostr.put('\n');
_Ostr.flush();
return (_Ostr);
}