PHP ver gevorderde |
|
Edit Weet het al, maar heb ander vraag.
Hoe kan je een string als filename gebruiken?
Ik probeer dit via de fstream.h-file.
<?php //kleur
ofstream myfile;
string bestandsnaam, inhoud;
bestandsnaam = filename() + ".txt";
inhoud = "test";
myfile.open(bestandsnaam);
myfile << inhoud;
myfile.close();
?>
<?php //kleur ofstream myfile; string bestandsnaam, inhoud; bestandsnaam = filename() + ".txt"; inhoud = "test"; myfile.open(bestandsnaam); myfile << inhoud; myfile.close(); ?>
Alleen geeft hij nu error.
Citaat: no matching function for call to `std::basic_ofstream<char, std::char_traits<char> >::open(
candidates are: void std::basic_ofstream<_CharT, _Traits>::open(const char*, std::_Ios_Openmode)
|