Compzone.Org :: Podręcznik PHP :: bindtextdomain
Która technologia najbardziej Cię interesuje?
PHP
ASP
AJAX
SQL
JavaScript
Inna
Sonda Wyniki

Add to Google

bindtextdomain

(PHP 3 >= 3.0.7, PHP 4, PHP 5)

bindtextdomain -- Sets the path for a domain

Description

string bindtextdomain ( string domain, string directory )

The bindtextdomain() function sets the path for a domain. It returns the full pathname for the domain currently being set.

Przykład 1. bindtextdomain() example

<?php

$domain 
'myapp';
echo 
bindtextdomain($domain'/usr/share/myapp/locale'); 

?>

This will output:

/usr/share/myapp/locale
Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!