A partir de tradutores profissionais, empresas, páginas da web e repositórios de traduções disponíveis gratuitamente
duplicating variable contents:
저작권 © 1997, 1998, 1999, 2000, 2001, 2002, 2003 the php documentation group
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
unregistering a variable with $_session.
there are two methods to propagate a session id:
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
registering a variable with track_vars enabled
예 1. registering a variable with track_vars enabled
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
see also variable variables and function_exists().
예 13-1. variable function example
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
users can access session variable like a normal variable.
예 2. registering a variable with register_globals enabled
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
a mechanism like for html form data where for each input field a variable is created does not exist.
the fdf_open() function opens a file with form data. this file must contain the data as returned from a pdf form. currently, the file has to be created 'manually' by using fopen() and writing the content of http_fdf_data with fwrite() into it. a mechanism like for html form data where for each input field a variable is created does not exist.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
but the most important pre of double-quoted strings is the fact that variable names will be expanded.
위에 나온 것 외의 다른 문자도 escape를 할 수 있지만, warning이 발생하게 된다.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
on windows 95 / 98 setting an environment variable can be done by placing a line in your autoexec.bat.
다른 디렉토리를 만들고 bindlib_w32.zip 를 여기에 풀어 놓는다. 디버그용 심볼테이블을 포함할 것인가(bindlib - win32 debug), 안 포함할 것인가(bindlib - win32 release)를 결정한다. 적절한 설정파일을 만든다.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
it is not possible to use echo() in a variable function context, but you can use print() instead.
echo() 는 실제로 함수가 아니다(이는 하나의 랭귀지 스트럭쳐이다.) 따라서 이 함수와 함께 parantheses 를 사용할 필요가 없다.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
extract() checks each key to see whether it constitutes a valid variable name and also for collisions with existing variables in the symbol table.
extract() checks for colissions with existing variables. the way collisions are treated is determined by extract_type. it can be one of the following values:
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
session_is_registered() returns true if there is a variable with the name name registered in the current session.
(php 4)
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
if the track_errors feature is enabled, any error message generated by the expression will be saved in the global variable $php_errormsg.
php는 @(at 표시)이라는 한 개의 오류 제어 연산자를 제공한다. php의 표현식 앞에 이 표시가 붙으면, 해당 표현식에서 발생한 모든 에러 메시지가 무시된다.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
session_start() creates a session (or resumes the current one based on the session id being passed via a get variable or a cookie).
session_start() creates a session (or resumes the current one based on the session id being passed via a get variable or a cookie).
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
as of php 4.1.0, $_session is available as global variable just like $_post, $_get, $_request and so on.
the track_vars and register_globals configuration settings influence how the session variables get stored and restored.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
$a = 1; / * global scope * / function test() {echo $a; / * reference to local scope variable * /} test();
위에서 $a 변수는 b.inc 스크립트에서도 사용할 수 있다. 기본적으로 함수 안에서 선언된 것은 함수 안에서만 사용되는 지역 변수이다. 또한 함수 안에서 사용되는 함수들은 기본적으로 지역 변수라고 가정하고 찾게 된다. 예를 들어:
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade: