분류 전체보기
-
PHP프로그래밍 언어/데이터 타입 2014. 12. 6. 16:45
integer(int), (integer)double(real), (double), (float) string(string)array(array)object(object) gettype()settype()-- 지역 변수함수 내부에 선언된 변수는 로컬범위(LOCAL SCOPE)를 가지며, 함수 내부에서만 접근 할 수 있다.지역 변수는 그것이 선언된 함수에서만 인식되기 때문에 서로 다른 함수에 같은 이름의 지역변수를 가질 수 있다.함수 내에서 정의된 변수의 영역을 전역 변수로 확대할 수 있다 // global함수 밖에서 정의된 변수를 import? - 정적 변수변수는 여전히 함수에 대하여 로컬범위이다 - 전역 변수함수 외부에 선언(?)된 변수는 전역범위(GLOBAL SCOPE)를 가진다 참조 사이트:http..
-
PHP(Professional Hypertext Preprocessor)프로그래밍 언어/규격 2014. 12. 6. 01:51
## /etc/php.inishort_open_tag = (Off|On)asp_tags = Off 변수 이름은 대소문자를 구별한다 참조 사이트:http://jun.hansung.ac.kr/ServerWP/PHP/PHP%20include%20and%20require.htmlhttp://jun.hansung.ac.kr/ServerWP/http://noraesae.github.io/PHP-a-fractal-of-bad-design-kr/
-
MySQL개발/Troub 2014. 12. 5. 18:01
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line'TYPE=MyISAM' => 'ENGINE=MyISAM' 참조 사이트:http://stackoverflow.com/questions/10389790/1064-you-have-an-error-in-your-sql-syntax
-
PHPPlatform/WAS 2014. 11. 26. 18:15
$ rpm -qa | egrep "^(httpd|php|mysql)" | sort -n # yum install [httpd mysql mysql-server php] php-mysql # service httpd status # service mysqld status $ php -v # service httpd (start|restart) # chkconfig --list | egrep "mysqld|httpd" # chkconfig mysqld on $ php -r 'echo "Hello World\n";' ## /etc/php.inishort_open_tag = (Off|On)display_errors = (On|Off)register_globals = (Off|On)extension_dir="C:..
-
MySQL 3DBMS 2014. 11. 24. 14:19
5.0.95phpMyAdmin- 버전 확인$ mysql -u testuser -pmysql> select version(); ## or SHOW VARIABLES LIKE 'version';# service mysqld status$ netstat -an | grep mysql$ mysql --version $ mysqladmin -uroot -p version | grep ^Server $ yum list installed mysql* $ rpm -qa | grep ^mysql-/etc/my.cnf[mysqld] > datadir/var/lib/mysql# service mysqld stop# chmod 755 -R /var/lib/mysql# chown mysql:mysql -R /var/lib/my..
-
아파치SysAdmin/WAS 2014. 11. 22. 17:17
centos-release-5-112.6.18 Apache/2.2.3 or httpd-2.2.3 $ yum list httpd > 아파치 버전 확인# httpd -vor $ rpm -qa httpdor $ yum list installed httpd ># yum -y install httpd* ## yum install httpd # service httpd status# service httpd start ## /etc/rc.d/init.d/httpd start c.f. service apache2 restart # chkconfig httpd on /etc/httpd/conf/httpd.confDocumentRoot/var/www/html//etc/httpd/conf.d/welcome.conf/var..
-
-