1
2
3
4
5
6
7
8
9
10
11
12
<?php
/* ----------------------------------------------------------------------------
* define関数の定数の例
*
* 作成: 2015.08.03 yoshi of CXMedia Inc.
* --------------------------------------------------------------------------- */
header("Content-type:text/plain; charset=UTF-8");
define('URL',"http://sample.com");
define('LOG',URL.'/logfile.log');
echo LOG,"\n";
?>