par
Berzemus » 14 févr. 2011, 12:35
Par exemple:
http://us3.php.net/manual/en/function.r ... php#101670
Edit: a été effacé. Contenu originel:
Require is a really neat function, compared to include. You can use it for security purposes. For example, consider that you have a database that's based on simple text-files. Theoretically, someone could type in the URL of those text-files, and view them directly in their browser. This is as opposed to what you want: those files only to be viewable through your own PHP script. Otherwise, the data won't be properly formatted, or much worse, you won't be able to do a proper secure authorization or authentication. So, here's the trick. Rename your .txt files to .php files. The first line should be this...
require('this_file_does_not_exist_and_will_never_exist');
Then, after that first line, the rest of the file is your database information. If someone tries access the file directly, they'll get an error, and see no information (danged hackers!). But, your PHP script that displays the database file will know that this line is there. This is assuming that you reprogram your text-database, php-front-end to ignore the first line of files when reading data.
It's not encryption, but it's powerful security, quick and cheap, for custom-built databases.
Ou encore celui-ci (le super-if):
http://us3.php.net/manual/en/control-st ... .php#90073
Et sans doute le champion toutes catégories (récupéré sur Google cache):
http://webcache.googleusercontent.com/s ... gle.com.au
Edit: autant le mettre en entier:
Use split with implode to fetch array values or elements:
<?php
list( $ip, $line, $filename) = split( ',', implode( ',', array('100.1.2.3','23','/index.php') ) );
echo $ip.$line.$filename;
?>
Result :
100.1.2.3
23
/index.php
Par exemple:
http://us3.php.net/manual/en/function.require.php#101670
Edit: a été effacé. Contenu originel:
[quote]Require is a really neat function, compared to include. You can use it for security purposes. For example, consider that you have a database that's based on simple text-files. Theoretically, someone could type in the URL of those text-files, and view them directly in their browser. This is as opposed to what you want: those files only to be viewable through your own PHP script. Otherwise, the data won't be properly formatted, or much worse, you won't be able to do a proper secure authorization or authentication. So, here's the trick. Rename your .txt files to .php files. The first line should be this...
require('this_file_does_not_exist_and_will_never_exist');
Then, after that first line, the rest of the file is your database information. If someone tries access the file directly, they'll get an error, and see no information (danged hackers!). But, your PHP script that displays the database file will know that this line is there. This is assuming that you reprogram your text-database, php-front-end to ignore the first line of files when reading data.
It's not encryption, but it's powerful security, quick and cheap, for custom-built databases.[/quote]
Ou encore celui-ci (le super-if):
http://us3.php.net/manual/en/control-structures.if.php#90073
Et sans doute le champion toutes catégories (récupéré sur Google cache):
http://webcache.googleusercontent.com/search?q=cache:zgI9cxLu7vYJ:php.net/manual/en/function.split.php+php.net+split&cd=1&hl=en&ct=clnk&gl=au&source=www.google.com.au
Edit: autant le mettre en entier:
[quote]Use split with implode to fetch array values or elements:
<?php
list( $ip, $line, $filename) = split( ',', implode( ',', array('100.1.2.3','23','/index.php') ) );
echo $ip.$line.$filename;
?>
Result :
100.1.2.3
23
/index.php[/quote]