openssl_encrypt()
si openssl_decrypt()
pot fi utilizate pentru a cripta si decripta text in PHP.openssl_encrypt()
si openssl_decrypt()
.
<?php $password = 'user_pass'; //password added by user $_POST['password'] $key_enc = '1234'; //key for encrypt $met_enc = 'aes256'; //method to encrypt: aes128, aes192, aes256, blowfish, cast-cbc $iv = '16_characters_ok'; //a random string with 16 characters //encrypts the password $pass_enc = openssl_encrypt($password, $met_enc, $key_enc, 0, $iv); echo $pass_enc; // "uw4QKRUsG+l17w5epb7nKw==" //decrypts the encrypted password, it uses the same arguments: $met_enc, $key_enc, $opt=0, $iv $pass_enc ='uw4QKRUsG+l17w5epb7nKw=='; //the encrypted password $pass = openssl_decrypt($pass_enc, $met_enc, $key_enc, 0, $iv); echo '<br>'.$pass; // "user_pass" ?>
Observati ca functia openssl_decrypt() trebuie sa foloseasca aceleasi argumente (aici: $met_enc, $key_enc, $opt=0, $iv) pentru decriptarea sirului criptat cu openssl_encrypt().
<ul> <li>http://coursesweb.net/html/</li> <li>http://www.marplo.net/html/</li> </ul>
.some_class { display: list-item; }
var obj = { "courses": ["php", "javascript", "ajax"] }; var jsonstr = JSON.stringify(obj); alert(jsonstr); // {"courses":["php","javascript","ajax"]}
$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>'; $dochtml = new DOMDocument(); $dochtml->loadHTML($strhtml); $elm = $dochtml->getElementById("dv1"); echo $elm->nodeValue; // CoursesWeb.net
I`m living here. - Traiesc /Locuiesc aici.
Estoy viviendo aquĆ. - Traiesc /Locuiesc aici.