if ($request_method = POST) {
rewrite ^(.*)$ /php/index.php break;
}
if ($http_user_agent ~ Android) {
rewrite ^(.*)$ /java/index.java break;
}
rewrite ^(.*)$ /html/index.html;
$codes = [
[
"name" => "autostart",
"func" => "autostart_info",
"cb" => function() {
return "blabla";
},
],
[
"name" => "autostart",
"func" => "autostart_info",
"cb" => function() {
return "blabla";
},
],
];
foreach($codes as $code) {
add_shortcode($code["name"], $code["func"]);
$$code["func"] = $code["cb"];
}
error_reporting(E_ALL) ;
ini_set('display_errors', 'On');
Хочу научиться программированию, и для первого опыта выбрал Си,
С чего его начинать? С Си, С++ или С#?
И также выходящий отсюда вопрос, а какая литература поможет мне в этом?