Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
$dyl="5"; //дължина на кода
function randStr($length) {
$key = "";
$pattern = "1234567890abcdefghijklmnopqrstuvwxyz";
for($i=0;$i<$length;$i++) {
$key .= $pattern{rand(0,35)};
}
return $key;
} //взимаме произволен текст
$text = randStr($dyl); //взимаме произволния текст
<?php
$dataurl = str_replace(" ", "+", $_POST["u"]);
$data = substr($dataurl, strpos($dataurl, ","));
$file = fopen("image.png", "wb");
fwrite($file, base64_decode($data));
fclose($file);
echo 'image.png';
?>
<?php
$dyl="5"; //дължина на кода
function randStr($length) {
$key = "";
$pattern = "1234567890abcdefghijklmnopqrstuvwxyz";
for($i=0;$i<$length;$i++) {
$key .= $pattern{rand(0,35)};
}
return $key;
} //взимаме произволен текст
$text = randStr($dyl); //взимаме произволния текст
$dataurl = str_replace(" ", "+", $_POST["u"]);
$data = substr($dataurl, strpos($dataurl, ","));
$file = fopen("$text.png", "wb");
fwrite($file, base64_decode($data));
fclose($file);
echo '$text.png';
?>
the_end каза:ето това ми е кода
<?php
$dyl="5"; //дължина на кода
function randStr($length) {
$key = "";
$pattern = "1234567890abcdefghijklmnopqrstuvwxyz";
for($i=0;$i<$length;$i++) {
$key .= $pattern{rand(0,35)};
}
return $key;
} //взимаме произволен текст
$text = randStr($dyl); //взимаме произволния текст
$dataurl = str_replace(" ", "+", $_POST["u"]);
$data = substr($dataurl, strpos($dataurl, ","));
$file = fopen( $text . '.png', "wb");
fwrite($file, base64_decode($data));
fclose($file);
echo '$text.png';
?>
защото после ми излиза /images/$text.png