変数の内容を表示したいのですPOST
が、出力が空です。
<?php
$dir = '/var/www/devData/test';
// create new directory with 777 permissions if it does not exist yet
// owner will be the user/group the PHP script is run under
if ( !file_exists($dir) ) {
mkdir ($dir, 0777);
}
$stringData = print_r($_POST['data'], true);
$file = "/var/www/devData/test/ciao.txt";
$fh = fopen($file, 'a+') or die("can't open file");
$fla = 0;
$arr = array();
$i = 0;
while(!feof($fh)) {
$theData = fgets($fh, filesize($file));
array_push($arr,$theData);
//echo $arr[$i];
$i++;
}
echo $stringData;
fclose($fh);
?>
関数を呼び出すとfwrite
、変数$stringData
がファイルに格納されます。
これは、php ファイルを呼び出す関数です。
$.post("JS/foo.php", {data: options_label}, function(result){alert(options_label) }, "json");
はoptions_label
配列です。
などを使ってみましdecode_json
たが、$stringData
まだ空っぽです。