PHP Miscellaneous Functions
- Previous Page PHP Zip
- Next Page PHP Time Zone
PHP অভিন্ন ফাংশন সমীক্ষা
আমরা অন্য ক্যাটাগরিতে উপস্থিত না থাকা ফাংশনগুলিকে এই পৃষ্ঠাতে সংক্ষেপিত করি
ইনস্টল
অভিন্ন ফাংশন PHP কর্মকান্ডীয়ার অংশ।এই ফাংশনগুলিকে ইনস্টল করতে হয় না
Runtime কনফিগারেশন
অভিন্ন ফাংশনের আচরণ php.ini-এ নষ্ট করা হয়েছে
অভিন্ন ফাংশন কনফিগারেশন অপশন:
নাম | ডিফল্ট | Description | পরিবর্তনযোগ্য |
---|---|---|---|
ignore_user_abort | "0" | FALSE নির্দেশ করে যে, যখন স্ক্রিপ্ট ক্লায়েন্টকে সংযুক্তি বিচ্ছিন্ন করার পরে চিহ্নিত হয়, তখন স্ক্রিপ্ট বন্ধ করা হবে | PHP_INI_ALL |
highlight.string | "#DD0000" | PHP সংজ্ঞান অনুসারে মান হলে উপলব্ধি করতে ব্যবহৃত রঙ | PHP_INI_ALL |
highlight.comment | "#FF8000" | PHP মুক্তলিপিকে উপলব্ধি করতে ব্যবহৃত রঙ | PHP_INI_ALL |
highlight.keyword | "#007700" | PHP কীভূতকে উপলব্ধি করতে ব্যবহৃত রঙ (যেমন কোণটি ও সংযোগ নিয়ে গিয়েছে) | PHP_INI_ALL |
highlight.bg | "#FFFFFF" | পটভূমির রঙ | PHP_INI_ALL |
highlight.default | "#0000BB" | PHP সংজ্ঞানের ডিফল্ট রঙ | PHP_INI_ALL |
highlight.html | "#000000" | HTML কোডের রঙ | PHP_INI_ALL |
browscap | NULL | ব্রাউজার কার্যকারিতা ফাইলের নাম ও অবস্থান (উদাহরণ: browscap.ini) | PHP_INI_SYSTEM |
PHP Miscellaneous Functions
PHP:এই ফাংশনটি সমর্থনকারী আরক্ষিত কোনো PHP সংস্করণ
ফাংশন | Description | PHP |
---|---|---|
connection_aborted() | ক্লায়েন্টকে বিচ্ছিন্ন করা হয়েছে কি না তা পরীক্ষা করুন | 3 |
connection_status() | বর্তমান সংযুক্তির অবস্থা ফিরিয়ে দিন | 3 |
connection_timeout() | PHP 4.0.5-এ ব্যবহার না করা উচিত | 3 |
constant() | একটি স্থায়ী মানের মান ফিরিয়ে দিন | 4 |
define() | একটি স্থায়ী মান নির্ধারণ করুন。 | 3 |
defined() | কোনো স্থায়ী মান স্থাপন করা হয়েছে কি না তা পরীক্ষা করুন。 | 3 |
die() | Outputs a message and exits the current script. | 3 |
eval() | Calculates the string as PHP code. | 3 |
exit() | Outputs a message and exits the current script. | 3 |
get_browser() | Returns the performance of the user's browser. | 3 |
highlight_file() | Highlights the syntax of a file. | 4 |
highlight_string() | Highlights the syntax of a string. | 4 |
ignore_user_abort() | Sets whether the script execution will be terminated when the client disconnects. | 3 |
pack() | Packs data into a binary string. | 3 |
php_check_syntax() | Not recommended for use in PHP 5.0.5. | 5 |
php_strip_whitespace() | Returns the source code file with deleted PHP comments and whitespace characters. | 5 |
show_source() | Alias of highlight_file() | 4 |
sleep() | Delays the execution of code for several seconds. | 3 |
time_nanosleep() | Delays the execution of code for several seconds and nanoseconds. | 5 |
time_sleep_until() | Delays the execution of code for a specified time. | 5 |
uniqid() | Generates a unique ID. | 3 |
unpack() | Unpacks data from a binary string. | 3 |
usleep() | Delays the execution of code for several microseconds. | 3 |
PHP Date / Time Constants
PHP:Indicates the earliest PHP version that supports the constant.
Constants | Description | PHP |
---|---|---|
CONNECTION_ABORTED | ||
CONNECTION_NORMAL | ||
CONNECTION_TIMEOUT | ||
__COMPILER_HALT_OFFSET__ | 5 |
- Previous Page PHP Zip
- Next Page PHP Time Zone