From professional translators, enterprises, web pages and freely available translation repositories.
setcookie example
for example:
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
viz také header() a setcookie().
note:
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
více detailů viz funkce setcookie().
for more details, including notes on browser bugs, see the setcookie() function.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
ukázky mazání cookies pomocí setcookie()
cookies must be deleted with the same parameters as they were set with.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
cookies můžete nastavovat pomocí funkce setcookie().
cookies are part of the http header, so setcookie() must be called before any output is sent to the browser.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
setcookie( "mycookie[]", "testing", time()+3600);
this is the same restriction as for the header() function.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
setcookie() definuje cookie, který se pošle spolu s hlavičkami.
like other headers, cookies must be sent before any output from your script (this is a protocol restriction).
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
v php 3 se vícenásobná volání setcookie() v jednom skriptu provedou v opačném pořadí.
the default value is the current directory that the cookie is being set in.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
v php 3 se zavedl špatný zvyk nastavovat cookies opačným pořadím volání setcookie() v kódu.
php 3 had the bad habit of setting cookies in the reverse order of the setcookie() calls in your code.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
cookies jsou součástí http hlavičky, tudíž setcookie() se musí volat před odesláním výstupu do browseru.
you can use the output buffering functions to delay the script output until you have decided whether or not to set any cookies or send any headers.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
if you need to identify the user or something, just use a session variable or separate cookie (using setcookie() method).
if you need to identify the user or something, just use a session variable or separate cookie (using setcookie() method).
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
output control funkce neovlivňují hlavičky odeslané pomocí header() nebo setcookie(), pouze funkce jako echo() a data mezi bloky php kódu.
for example, if you set output_handler to mb_output_handler(), character encoding will be transparently converted to the specified encoding.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
mezitím volání setcookie() úspěšně uložilo cookie bez vyvolání chyby. (normálně nemůžete odeslat do browseru hlavičky poté, co už byla odeslána data.)
in the above example, the output from echo() would be stored in the output buffer until ob_end_flush() was called.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
$count++; setcookie("count", $count, time()+3600); setcookie("cart[$count]", $item, time()+3600);
?php setcookie( "mycookie[foo]", "testing 1", time()+3600); setcookie("mycookie[bar]", "testing 2", time()+3600);?
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting