bindtextdomain
(PHP 4, PHP 5)
bindtextdomain — تعیین مسیر دامنه
Description
string bindtextdomain
( string $domain
, string $directory
)
تابع bindtextdomain() مسیر دامنه را تعیین میکند.
Parameters
- domain
-
دامنه
- directory
-
مسیر دایرکتوری
Return Values
مسیر کامل domain فعلی استفاده شده.
Examples
Example #1 مثال bindtextdomain()
<?php
$domain = 'myapp';
echo bindtextdomain($domain, '/usr/share/myapp/locale');
?>
The above example will output:
/usr/share/myapp/locale
There are no user contributed notes for this page.
