ওয়েব সাইটের জন্য আকর্ষণীয় ডিজাইন তৈরির জন্য এইচ টি এম এল (HTML) এবং সি এস এস (CSS) এর পরিপূরক অন্যকিছু নেই। কিন্তু যেহেতু এইচ টি এম এল (HTML) এবং সি এস এস (CSS) কোন প্রোগ্রামিং ল্যাঙ্গুয়েজ নয় তাই ওয়েব পেজে প্রোগ্রামিং এর সুবিধা যুক্ত করার জন্য এবং ডাইনামিক ডাটা পরিচালনার জন্য এইচ টি এম এল (HTML) এর অভ্যন্তরে পি এইচ পি (PHP ) এমবেড বা অন্তর্ভূক্ত করার প্রয়োজন পরে। মূলত কোন একটা সাইটের ডিজাইন তৈরি করা হয় এইচ টি এম এল এবং সি এস এস ব্যবহার করে, আর সিকিউরিটি সিস্টেম, কন্টেন্ট ম্যানেজমেন্ট সিস্টেম,লগ ইন সিস্টেম ইত্যাদি তৈরি করা হয় এইচ টি এম এল (HTML) এর মধ্যেই পি এইচ পি (PHP ) এমবেডিং করে।
এইচ টি এম এল (HTML) এর অভ্যন্তরে পি এইচ
পি (PHP ) এমবেড বা অন্তর্ভূক্ত করার জন্য HTML কোডের
<body></body> এর মধ্যে PHP কোড সমূহ যুক্ত করে, সর্বশেষে
index.php এর অনুরূপে ফাইলকে save করতে হয়। কোন একটা পেজের মধ্যে একাধিক
PHP কোড এর ব্লক থাকতে পারে প্রতিটি PHP কোড এর ব্লক শুরু হবে <?php
দ্বারা এবং শেষ হবে ?> দ্বারা অর্থাৎ প্রতিটি PHP কোড এর ব্লক হবে
<?php ……………. ?> এর এর অনুরূপ।
অনুশীলন প্রজেক্ট
<html>
<head>
<title> www.tutohost.com</title>
<style>
body{background:#FFC;}
h2{color:#F03;}
h1{color:#C60;}
</style>
</head>
<body>
<?php
echo "<h1>We are learning PHP</h1>";
echo "<br />";
echo "<h2>Welcome to www.tutorialbd.com.</h2>";
?> <h1> A simple math.</h1>
<h2>
A=10, B=15, C=A+B=?
</h2>
C=
<?php
$a=10;
$b=15;
$c=$a+$b;
echo $c;
?> <h1>
Some information about PHP.
</h1>
<?php
phpinfo();
?> </body>
</html>
<head>
<title> www.tutohost.com</title>
<style>
body{background:#FFC;}
h2{color:#F03;}
h1{color:#C60;}
</style>
</head>
<body>
<?php
echo "<h1>We are learning PHP</h1>";
echo "<br />";
echo "<h2>Welcome to www.tutorialbd.com.</h2>";
?> <h1> A simple math.</h1>
<h2>
A=10, B=15, C=A+B=?
</h2>
C=
<?php
$a=10;
$b=15;
$c=$a+$b;
echo $c;
?> <h1>
Some information about PHP.
</h1>
<?php
phpinfo();
?> </body>
</html>
উপরের কোডটুকু একটা nptepad এ
লেখার পর File মেনুতে ক্লিক করে Save as এ ক্লিক করার পর File name এ
index.php দিয়ে Save as type এ All files সিলেক্ট করে Save এ ক্লিক করে
Save করতে হবে। index.php ফাইলটিকে C:\xampp\htdocs অর্থাৎ htdocs
ফোল্ডারের মধ্যে রাখতে হবে। এ কাজটিকে সহজে করার জন্য htdocs ফোল্ডারটিকে
Shortcut করে Desktop এ রেখে দেয়া যেতে পারে। XAMPP Running অবস্থায়
থাকলে index.php ফাইলটি ব্রাউজারে দেখানোর জন্য এড্রেস বারে লেখতে হবে http://localhost/index.php
। আর যদি htdocs ফোল্ডারের মধ্যে কোন নতুন ফোল্ডার যেমন site নামে একটা
ফোল্ডার তৈরি করে তার মধ্যে index.php ফাইলটিকে রাখা হয় তাহলে
ব্রাউজারের এড্রেস বারে লেখতে হবে http://localhost/site/index.php । তাহলে ব্রাউজারে নিচের ছবির মত দেখাবে।
We are learning PHP
Welcome to www.tutorialbd.com.
A simple math.
A=10, B=15, C=A+B=?
C= 25Some information about PHP.
PHP Version 5.3.29 |
System | Linux apollo.thewebhostserver.com 2.6.32-604.30.3.lve1.3.63.el6.x86_64 #1 SMP Sun Sep 27 06:34:10 EDT 2015 x86_64 |
Build Date | Jun 22 2016 06:08:30 |
Configure Command | './configure' '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--target=x86_64-redhat-linux-gnu' '--program-prefix=' '--prefix=/opt/alt/php53' '--exec-prefix=/opt/alt/php53' '--bindir=/opt/alt/php53/usr/bin' '--sbindir=/opt/alt/php53/usr/sbin' '--sysconfdir=/opt/alt/php53/etc' '--datadir=/opt/alt/php53/usr/share' '--includedir=/opt/alt/php53/usr/include' '--libdir=/opt/alt/php53/usr/lib64' '--libexecdir=/opt/alt/php53/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/opt/alt/php53/usr/share/man' '--infodir=/opt/alt/php53/usr/share/info' '--cache-file=../config.cache' '--with-libdir=lib64' '--with-config-file-path=/opt/alt/php53/etc' '--with-config-file-scan-dir=/opt/alt/php53/link/conf' '--with-exec-dir=/usr/bin' '--with-layout=GNU' '--disable-debug' '--disable-rpath' '--without-pear' '--without-gdbm' '--with-pic' '--with-bz2' '--with-zlib' '--with-gettext' '--with-gmp' '--with-iconv' '--with-mhash' '--with-readline' '--with-kerberos' '--with-sqlite3' '--with-curl=/opt/alt/curlssl/usr' '--with-pcre-regex=/opt/alt/pcre/usr' '--with-libxml-dir=/opt/alt/libxml2/usr' '--with-openssl=/usr' '--enable-xml' '--enable-exif' '--enable-ftp' '--enable-magic-quotes' '--enable-shmop' '--enable-calendar' '--with-litespeed' '--enable-pcntl' '--disable-mbstring' '--disable-bcmath' '--disable-dba' '--disable-dom' '--disable-fileinfo' '--disable-json' '--disable-intl' '--disable-pdo' '--disable-phar' '--disable-posix' '--disable-soap' '--disable-sockets' '--disable-sysvsem' '--disable-sysvshm' '--disable-sysvmsg' '--disable-wddx' '--disable-xmlreader' '--disable-xmlwriter' '--disable-zip' '--without-gd' '--without-imap' '--without-xmlrpc' '--without-xsl' '--without-ldap' '--without-pgsql' '--without-snmp' '--without-sqlite' '--without-mcrypt' '--without-tidy' '--disable-dbx' '--without-enchant' '--without-recode' '--without-mssql' '--without-pspell' '--without-unixODBC' '--disable-cli' |
Server API | LiteSpeed V6.9 |
Virtual Directory Support | disabled |
Configuration File (php.ini) Path | /opt/alt/php53/etc |
Loaded Configuration File | /opt/alt/php53/etc/php.ini |
Scan this dir for additional .ini files | /opt/alt/php53/link/conf |
Additional .ini files parsed | /opt/alt/php53/link/conf/alt_php.ini |
PHP API | 20090626 |
PHP Extension | 20090626 |
Zend Extension | 220090626 |
Zend Extension Build | API220090626,NTS |
PHP Extension Build | API20090626,NTS |
Debug Build | no |
Thread Safety | disabled |
Zend Memory Manager | enabled |
Zend Multibyte Support | disabled |
IPv6 Support | enabled |
Registered PHP Streams | https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, zip |
Registered Stream Socket Transports | tcp, udp, unix, udg, ssl, sslv3, sslv2, tls |
Registered Stream Filters | zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, mcrypt.*, mdecrypt.* |
PHP Credits
Configuration
bz2
BZip2 Support | Enabled |
Stream Wrapper support | compress.bzip2:// |
Stream Filter support | bzip2.decompress, bzip2.compress |
BZip2 Version | 1.0.5, 10-Dec-2007 |
calendar
Calendar support | enabled |
Core
PHP Version | 5.3.29 |
Directive | Local Value | Master Value |
---|---|---|
allow_call_time_pass_reference | Off | Off |
allow_url_fopen | On | On |
allow_url_include | Off | Off |
always_populate_raw_post_data | Off | Off |
arg_separator.input | & | & |
arg_separator.output | & | & |
asp_tags | Off | Off |
auto_append_file | no value | no value |
auto_globals_jit | On | On |
auto_prepend_file | no value | no value |
browscap | no value | no value |
default_charset | no value | no value |
default_mimetype | text/html | text/html |
define_syslog_variables | Off | Off |
disable_classes | no value | no value |
disable_functions | no value | no value |
display_errors | Off | Off |
display_startup_errors | Off | Off |
doc_root | no value | no value |
docref_ext | no value | no value |
docref_root | no value | no value |
enable_dl | On | On |
error_append_string | no value | no value |
error_log | error_log | error_log |
error_prepend_string | no value | no value |
error_reporting | 30719 | 30719 |
exit_on_timeout | Off | Off |
expose_php | On | On |
extension_dir | /opt/alt/php53/usr/lib64/php/modules | /opt/alt/php53/usr/lib64/php/modules |
file_uploads | On | On |
highlight.bg | #FFFFFF | #FFFFFF |
highlight.comment | #FF8000 | #FF8000 |
highlight.default | #0000BB | #0000BB |
highlight.html | #000000 | #000000 |
highlight.keyword | #007700 | #007700 |
highlight.string | #DD0000 | #DD0000 |
html_errors | On | On |
ignore_repeated_errors | Off | Off |
ignore_repeated_source | Off | Off |
ignore_user_abort | Off | Off |
implicit_flush | Off | Off |
include_path | .:/opt/alt/php53/usr/share/pear:/opt/alt/php53/usr/share/php | .:/opt/alt/php53/usr/share/pear:/opt/alt/php53/usr/share/php |
log_errors | On | On |
log_errors_max_len | 1024 | 1024 |
magic_quotes_gpc | Off | Off |
magic_quotes_runtime | Off | Off |
magic_quotes_sybase | Off | Off |
mail.add_x_header | Off | Off |
mail.force_extra_parameters | no value | no value |
mail.log | no value | no value |
max_execution_time | 30 | 30 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | -1 | -1 |
max_input_vars | 1000 | 1000 |
memory_limit | 128M | 128M |
open_basedir | no value | no value |
output_buffering | 4096 | 4096 |
output_handler | no value | no value |
post_max_size | 8M | 8M |
precision | 14 | 14 |
realpath_cache_size | 16K | 16K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | Off | Off |
register_globals | Off | Off |
register_long_arrays | Off | Off |
report_memleaks | On | On |
report_zend_debug | On | On |
request_order | no value | no value |
safe_mode | Off | Off |
safe_mode_exec_dir | no value | no value |
safe_mode_gid | Off | Off |
safe_mode_include_dir | no value | no value |
sendmail_from | no value | no value |
sendmail_path | /usr/sbin/sendmail -t -i | /usr/sbin/sendmail -t -i |
serialize_precision | 100 | 100 |
short_open_tag | On | On |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sql.safe_mode | Off | Off |
track_errors | Off | Off |
unserialize_callback_func | no value | no value |
upload_max_filesize | 4M | 4M |
upload_tmp_dir | /tmp | /tmp |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | .user.ini | .user.ini |
variables_order | EGPCS | EGPCS |
xmlrpc_error_number | 0 | 0 |
xmlrpc_errors | Off | Off |
y2k_compliance | On | On |
zend.enable_gc | On | On |
ctype
ctype functions | enabled |
curl
cURL support | enabled |
cURL Information | 7.36.0 |
Age | 3 |
Features | |
AsynchDNS | Yes |
Debug | No |
GSS-Negotiate | Yes |
IDN | Yes |
IPv6 | Yes |
Largefile | Yes |
NTLM | Yes |
SPNEGO | No |
SSL | Yes |
SSPI | No |
krb4 | No |
libz | Yes |
CharConv | No |
Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp |
Host | x86_64-redhat-linux-gnu |
SSL Version | OpenSSL/1.0.1e |
ZLib Version | 1.2.3 |
libSSH Version | libssh2/1.4.3 |
date
date/time support | enabled |
"Olson" Timezone Database Version | 2013.3 |
Timezone Database | internal |
Default timezone | Europe/London |
Directive | Local Value | Master Value |
---|---|---|
date.default_latitude | 31.7667 | 31.7667 |
date.default_longitude | 35.2333 | 35.2333 |
date.sunrise_zenith | 90.583333 | 90.583333 |
date.sunset_zenith | 90.583333 | 90.583333 |
date.timezone | Europe/London | Europe/London |
dba
DBA support | enabled |
Supported handlers | cdb cdb_make db4 inifile flatfile |
Directive | Local Value | Master Value |
---|---|---|
dba.default_handler | flatfile | flatfile |
dbase
Version | 5.1.0 |
dbx
dbx support | enabled |
---|---|
dbx version | 1.1.1-dev |
supported databases | MySQL ODBC PostgreSQL Microsoft SQL Server FrontBase Oracle 8 (oci8) Sybase-CT SQLite |
Directive | Local Value | Master Value |
---|---|---|
dbx.colnames_case | unchanged | unchanged |
dom
DOM/XML | enabled |
DOM/XML API Version | 20031129 |
libxml Version | 2.9.1 |
HTML Support | enabled |
XPath Support | enabled |
XPointer Support | enabled |
Schema Support | enabled |
RelaxNG Support | enabled |
ereg
Regex Library | Bundled library enabled |
exif
EXIF Support | enabled |
EXIF Version | 1.4 $Id$ |
Supported EXIF Version | 0220 |
Supported filetypes | JPEG,TIFF |
Directive | Local Value | Master Value |
---|---|---|
exif.decode_jis_intel | JIS | JIS |
exif.decode_jis_motorola | JIS | JIS |
exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
exif.encode_jis | no value | no value |
exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
fileinfo
fileinfo support | enabled |
version | 1.0.5-dev |
filter
Input Validation and Filtering | enabled |
Revision | $Id: 209a1c3c98c04a5474846e7bbe8ca72054ccfd4f $ |
Directive | Local Value | Master Value |
---|---|---|
filter.default | unsafe_raw | unsafe_raw |
filter.default_flags | no value | no value |
ftp
FTP support | enabled |
gd
GD Support | enabled |
GD Version | bundled (2.1.0 compatible) |
FreeType Support | enabled |
FreeType Linkage | with freetype |
FreeType Version | 2.3.11 |
T1Lib Support | enabled |
GIF Read Support | enabled |
GIF Create Support | enabled |
JPEG Support | enabled |
libJPEG Version | 6b |
PNG Support | enabled |
libPNG Version | 1.2.49 |
WBMP Support | enabled |
XPM Support | enabled |
libXpm Version | 30411 |
XBM Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
gd.jpeg_ignore_warning | 0 | 0 |
gettext
GetText Support | enabled |
gmp
gmp support | enabled |
GMP version | 4.3.1 |
hash
hash support | enabled |
Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b salsa10 salsa20 haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
iconv
iconv support | enabled |
iconv implementation | glibc |
iconv library version | 2.12 |
Directive | Local Value | Master Value |
---|---|---|
iconv.input_encoding | ISO-8859-1 | ISO-8859-1 |
iconv.internal_encoding | ISO-8859-1 | ISO-8859-1 |
iconv.output_encoding | ISO-8859-1 | ISO-8859-1 |
imagick
imagick module | enabled |
---|---|
imagick module version | 3.1.2 |
imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator |
ImageMagick version | ImageMagick 6.9.0-0 Q16 x86_64 2016-05-05 http://www.imagemagick.org |
ImageMagick copyright | Copyright (C) 1999-2014 ImageMagick Studio LLC |
ImageMagick release date | 2016-05-05 |
ImageMagick number of supported formats: | 212 |
ImageMagick supported formats | 3FR, AAI, AI, ART, ARW, AVI, AVS, BGR, BGRA, BMP, BMP2, BMP3, BRF, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DNG, DOT, DPX, DXT1, DXT5, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FITS, FRACTAL, FTS, G3, GIF, GIF87, GRADIENT, GRAY, GROUP4, GV, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, IIQ, INFO, INLINE, IPL, ISOBRL, JNG, JNX, JPEG, JPG, JSON, K25, KDC, LABEL, M2V, M4V, MAC, MAP, MASK, MAT, MATTE, MEF, MIFF, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG00, PNG24, PNG32, PNG48, PNG64, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, RADIAL-GRADIENT, RAF, RAS, RAW, RGB, RGBA, RGBO, RGF, RLA, RLE, RMF, RW2, SCR, SCT, SFW, SGI, SHTML, SIX, SIXEL, SPARSE-COLOR, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VIPS, VST, WBMP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, YCbCr, YCbCrA, YUV |
Directive | Local Value | Master Value |
---|---|---|
imagick.locale_fix | 0 | 0 |
imagick.progress_monitor | 0 | 0 |
imap
IMAP c-Client Version | 2007e |
SSL Support | enabled |
Kerberos Support | enabled |
intl
Internationalization support | enabled |
---|---|
version | 1.1.0 |
ICU version | 50.1.2 |
ICU Data version | 50.1 |
Directive | Local Value | Master Value |
---|---|---|
intl.default_locale | no value | no value |
intl.error_level | 0 | 0 |
json
json support | enabled |
json version | 1.2.1 |
libxml
libXML support | active |
libXML Compiled Version | 2.9.1 |
libXML Loaded Version | 20901 |
libXML streams | enabled |
mailparse
mailparse support | enabled |
---|---|
Extension Version | 2.1.6 |
Revision | $Revision: 305002 $ |
Directive | Local Value | Master Value |
---|---|---|
mailparse.def_charset | us-ascii | us-ascii |
mbstring
Multibyte Support | enabled |
Multibyte string engine | libmbfl |
HTTP input encoding translation | disabled |
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
---|
Multibyte (japanese) regex support | enabled |
Multibyte regex (oniguruma) backtrack check | On |
Multibyte regex (oniguruma) version | 4.7.1 |
Directive | Local Value | Master Value |
---|---|---|
mbstring.detect_order | no value | no value |
mbstring.encoding_translation | Off | Off |
mbstring.func_overload | 0 | 0 |
mbstring.http_input | pass | pass |
mbstring.http_output | pass | pass |
mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
mbstring.internal_encoding | no value | no value |
mbstring.language | neutral | neutral |
mbstring.strict_detection | Off | Off |
mbstring.substitute_character | no value | no value |
mcrypt
mcrypt support | enabled |
---|---|
mcrypt_filter support | enabled |
Version | 2.5.8 |
Api No | 20021217 |
Supported ciphers | cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes |
Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
Directive | Local Value | Master Value |
---|---|---|
mcrypt.algorithms_dir | no value | no value |
mcrypt.modes_dir | no value | no value |
mhash
MHASH support | Enabled |
MHASH API Version | Emulated Support |
mysql
MySQL Support | enabled |
---|---|
Active Persistent Links | 0 |
Active Links | 0 |
Client API version | 5.5.36 |
MYSQL_MODULE_TYPE | no value |
MYSQL_SOCKET | /var/lib/mysql/mysql.sock |
MYSQL_INCLUDE | no value |
MYSQL_LIBS | no value |
Directive | Local Value | Master Value |
---|---|---|
mysql.allow_local_infile | On | On |
mysql.allow_persistent | On | On |
mysql.connect_timeout | 60 | 60 |
mysql.default_host | no value | no value |
mysql.default_password | no value | no value |
mysql.default_port | no value | no value |
mysql.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
mysql.default_user | no value | no value |
mysql.max_links | Unlimited | Unlimited |
mysql.max_persistent | Unlimited | Unlimited |
mysql.trace_mode | Off | Off |
mysqli
MysqlI Support | enabled |
---|---|
Client API library version | 5.5.36 |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Client API header version | 5.5.36 |
MYSQLI_SOCKET | /var/lib/mysql/mysql.sock |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | On | On |
mysqli.allow_persistent | On | On |
mysqli.default_host | no value | no value |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | no value | no value |
mysqli.default_socket | no value | no value |
mysqli.default_user | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.reconnect | Off | Off |
openssl
OpenSSL support | enabled |
OpenSSL Library Version | OpenSSL 1.0.1e-fips 11 Feb 2013 |
OpenSSL Header Version | OpenSSL 1.0.1e-fips 11 Feb 2013 |
pcre
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 8.37 2015-04-28 |
Directive | Local Value | Master Value |
---|---|---|
pcre.backtrack_limit | 1000000 | 1000000 |
pcre.recursion_limit | 100000 | 100000 |
PDO
PDO support | enabled |
---|---|
PDO drivers | mysql |
pdo_mysql
PDO Driver for MySQL | enabled |
---|---|
Client API version | 5.5.36 |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
Reflection
Reflection | enabled |
---|---|
Version | $Id: 4af6c4c676864b1c0bfa693845af0688645c37cf $ |
session
Session Support | enabled |
Registered save handlers | files user |
Registered serializer handlers | php php_binary |
Directive | Local Value | Master Value |
---|---|---|
session.auto_start | Off | Off |
session.bug_compat_42 | Off | Off |
session.bug_compat_warn | On | On |
session.cache_expire | 180 | 180 |
session.cache_limiter | nocache | nocache |
session.cookie_domain | no value | no value |
session.cookie_httponly | Off | Off |
session.cookie_lifetime | 0 | 0 |
session.cookie_path | / | / |
session.cookie_secure | Off | Off |
session.entropy_file | no value | no value |
session.entropy_length | 0 | 0 |
session.gc_divisor | 1000 | 1000 |
session.gc_maxlifetime | 1440 | 1440 |
session.gc_probability | 1 | 1 |
session.hash_bits_per_character | 5 | 5 |
session.hash_function | 0 | 0 |
session.name | PHPSESSID | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | /tmp | /tmp |
session.serialize_handler | php | php |
session.use_cookies | On | On |
session.use_only_cookies | On | On |
session.use_strict_mode | Off | Off |
session.use_trans_sid | 0 | 0 |
shmop
shmop support | enabled |
SimpleXML
Simplexml support | enabled |
---|---|
Revision | $Id: 02ab7893b36d51e9c59da77d7e287eb3b35e1e32 $ |
Schema support | enabled |
soap
Soap Client | enabled |
Soap Server | enabled |
Directive | Local Value | Master Value |
---|---|---|
soap.wsdl_cache | 1 | 1 |
soap.wsdl_cache_dir | /tmp | /tmp |
soap.wsdl_cache_enabled | 1 | 1 |
soap.wsdl_cache_limit | 5 | 5 |
soap.wsdl_cache_ttl | 86400 | 86400 |
SPL
SPL support | enabled |
---|---|
Interfaces | Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
sqlite3
SQLite3 support | enabled |
---|---|
SQLite3 module version | 0.7-dev |
SQLite Library | 3.7.7.1 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
standard
Dynamic Library Support | enabled |
Path to sendmail | /usr/sbin/sendmail -t -i |
Directive | Local Value | Master Value |
---|---|---|
assert.active | 1 | 1 |
assert.bail | 0 | 0 |
assert.callback | no value | no value |
assert.quiet_eval | 0 | 0 |
assert.warning | 1 | 1 |
auto_detect_line_endings | 0 | 0 |
default_socket_timeout | 60 | 60 |
from | no value | no value |
safe_mode_allowed_env_vars | PHP_ | PHP_ |
safe_mode_protected_env_vars | LD_LIBRARY_PATH | LD_LIBRARY_PATH |
url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
user_agent | no value | no value |
tokenizer
Tokenizer Support | enabled |
xml
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.1 |
xsl
XSL | enabled |
libxslt Version | 1.1.26 |
libxslt compiled against libxml Version | 2.7.6 |
EXSLT | enabled |
libexslt Version | 1.1.26 |
zip
Zip | enabled |
Extension Version | $Id: b1a1a3628c4ed0ad78fb0cc4a99b06a56aa281c4 $ |
Zip version | 1.11.0 |
Libzip version | 0.10.1 |
zlib
ZLib Support | enabled |
Stream Wrapper support | compress.zlib:// |
Stream Filter support | zlib.inflate, zlib.deflate |
Compiled Version | 1.2.3 |
Linked Version | 1.2.3 |
Directive | Local Value | Master Value |
---|---|---|
zlib.output_compression | Off | Off |
zlib.output_compression_level | -1 | -1 |
zlib.output_handler | no value | no value |
Additional Modules
Module Name |
---|
ionCube Loader |
litespeed |
Environment
Variable | Value |
---|
PHP Variables
Variable | Value |
---|---|
_SERVER["HTTP_ACCEPT"] | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
_SERVER["HTTP_ACCEPT_ENCODING"] | gzip, deflate |
_SERVER["HTTP_ACCEPT_LANGUAGE"] | en-US,en;q=0.5 |
_SERVER["HTTP_CONNECTION"] | keep-alive |
_SERVER["HTTP_HOST"] | tutorialbd.com |
_SERVER["HTTP_REFERER"] | http://tutorialbd.com/php/4.php |
_SERVER["HTTP_USER_AGENT"] | Mozilla/5.0 (Windows NT 10.0; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0 |
_SERVER["DOCUMENT_ROOT"] | /home/mahbub24/public_html/tutobd |
_SERVER["REMOTE_ADDR"] | 103.67.158.143 |
_SERVER["REMOTE_PORT"] | 45774 |
_SERVER["SERVER_ADDR"] | 46.28.50.181 |
_SERVER["SERVER_NAME"] | tutorialbd.com |
_SERVER["SERVER_ADMIN"] | webmaster@tutobd.mahbub24.com |
_SERVER["SERVER_PORT"] | 80 |
_SERVER["REQUEST_URI"] | /php/example/4.php |
_SERVER["SCRIPT_FILENAME"] | /home/mahbub24/public_html/tutobd/php/example/4.php |
_SERVER["QUERY_STRING"] | no value |
_SERVER["SCRIPT_URI"] | http://tutorialbd.com/php/example/4.php |
_SERVER["SCRIPT_URL"] | /php/example/4.php |
_SERVER["SCRIPT_NAME"] | /php/example/4.php |
_SERVER["SERVER_PROTOCOL"] | HTTP/1.1 |
_SERVER["SERVER_SOFTWARE"] | LiteSpeed |
_SERVER["REQUEST_METHOD"] | GET |
_SERVER["X-LSCACHE"] | 1 |
_SERVER["PHP_SELF"] | /php/example/4.php |
_SERVER["REQUEST_TIME"] | 1479105018 |
PHP License
This program is free software; you can redistribute it and/or modify it
under the terms of the PHP License as published by the PHP Group and
included in the distribution in the file: LICENSE
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net. |