De traductores profesionales, empresas, páginas web y repositorios de traducción de libre uso.
mail- copies- tocollection of article headers
odeslat kopie nacollection of article headers
Última actualización: 2011-10-23
Frecuencia de uso: 1
Calidad:
create a copy of the current frame, that remains linked to it. this means they always show the same contents: modifying the contents in such a frame will update all its linked copies.
vytvořit kopii aktuálního rámce, který s ním zůstane propojen. to znamená, že budou vždy zobrazovat stejný obsah: změnou obsahu takového rámce změníte i všechny jeho propojené kopie.
Última actualización: 2011-10-23
Frecuencia de uso: 1
Calidad:
note that the assignment copies the original variable to the new one (assignment by value), so changes to one will not affect the other. this may also have relevance if you need to copy something like a large array inside a tight loop. php 4 supports assignment by reference, using the $var = $othervar; syntax, but this is not possible in php 3. 'assignment by reference' means that both variables end up pointing at the same data, and nothing is copied anywhere. to learn more about references, please read references explained.
php 4 podporuje přiřazení odkazem použitím syntaxe $var = $othervar;, ale v php 3 to provést nelze. "přiřazení odkazem "znamená, že obě proměnné ukazují na tatáž data a nic se nikam nekopíruje.
Última actualización: 2011-10-24
Frecuencia de uso: 1
Calidad:
Advertencia: contiene formato HTML invisible