Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

William Hill Casino - casino online aams N.1 in Italia
William Hill Casino e' il migliore casino online in Italia. E' un sito sicuro, certificato e legale con licenza AAMS. William Hill Casino vi regala i migliori bonus per giocare online e vincere alla grande!
Multisito
Il sito nato col cuore di coloro che credono nell'amicizia che si avvale di chat e videochat senza registrazione protette per raggiungere questo obiettivo

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



str_rot13

(PHP 4 >= 4.2.0, PHP 5)

str_rot13 -- Perform the rot13 transform on a string

Description

string str_rot13 ( string str)

This function performs the ROT13 encoding on the str argument and returns the resulting string. The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched. Encoding and decoding are done by the same function, passing an encoded string as argument will return the original version.

Esempio 1. str_rot13() example

<?php

echo str_rot13('PHP 4.3.0'); // CUC 4.3.0

?>

Nota: The behaviour of this function was buggy until PHP 4.3.0. Before this, the str was also modified, as if passed by reference.