PHP в XAMPP не работает
У меня работает PHP в XAMPP Win 7 64 bit. Когда я запускаю файл PHP:
<!DOCTYPE html>
<html>
<body>
<?php
print "<h2>PHP is fun!</h2>";
print "Hello world!<br>";
print "I'm about to learn PHP!";
?>
</body>
</html>
Я получил:
PHP is fun!"; print "Hello world!
"; print "I'm about to learn PHP!"; ?>
Я получаю тот же результат, используя эхо.
я открыл http://localhost/xampp/
, который показывает конфигурацию XAMPP. PHP отображается как "активированный". На странице XAMPP щелчок phpinfo дает мне:
**PHP Version 5.3.5
System Windows NT MINWINPC 6.1 build 7601 (Unknow Windows version Home Premium Edition Service Pack 1) i586
Build Date Jan 6 2011 17:50:45
Compiler MSVC6 (Visual C++ 6.0)
Architecture x86
Configure Command cscript /nologo configure.js "--enable-snapshot-build" "--disable-isapi" "--enable-debug-pack" "--disable-isapi" "--without-mssql" "--without-pdo-mssql" "--without-pi3web" "--with-pdo-oci=D:\php-sdk\oracle\instantclient10\sdk,shared" "--with-oci8=D:\php-sdk\oracle\instantclient10\sdk,shared" "--with-oci8-11g=D:\php-sdk\oracle\instantclient11\sdk,shared" "--enable-object-out-dir=../obj/" "--enable-com-dotnet" "--with-mcrypt=static"
Server API Apache 2.0 Handler
Virtual Directory Support enabled
Configuration File (php.ini) Path C:\Windows
Loaded Configuration File C:\xampp\php\php.ini
Scan this dir for additional .ini files (none)
Additional .ini files parsed (none)
PHP API 20090626
PHP Extension 20090626
Zend Extension 220090626
Zend Extension Build API220090626,TS,VC6
PHP Extension Build API20090626,TS,VC6
Debug Build no
Thread Safety enabled
Zend Memory Manager enabled
Zend Multibyte Support disabled
IPv6 Support enabled
Registered PHP Streams php, file, glob, data, http, ftp, zip, compress.zlib, compress.bzip2, phar
Registered Stream Socket Transports tcp, udp
Registered Stream Filters convert.iconv.*, mcrypt.*, mdecrypt.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, zlib.*, bzip2.***
Когда я запускаю info.php, с кодом:
<?php
phpinfo();
?>
Я получаю пустую страницу.
Очевидно, что PHP как-то облажался - но как я могу это исправить? Могу ли я переустановить PHP в XAMPP без переустановки самого XAMP?