home archives github knives links
tags php
categories
only title title and content
php笔记

关于phpstorm安装

sudo apt install php7.2-cgi

phpstorm注册网站

本地php命令

启动内置服务器

不支持浏览目录, 不支持断点续传

php -S localhost:6060 -t .

Address already in use

html加载php

注意:

输出到console

<?
function console_log($src)
{
if (is_array($src) || is_object($src))
{
echo("console.log(" . json_encode($src) . ");");
}
else
{
echo("console.log(" . $src . ");");
}
}
console_log("fuck");

js调用php变量

<?php
function tranlate_js($src, $dest)
{
if (is_array($dest) || is_object($dest))
{
console_log("...");
return;
}
if (is_array($src) || is_object($src))
{
echo("var " . $dest . "=" . json_encode($src) . ";");
}
else
{
echo("var " . $dest . "=" . $src . ";");
}
}
$arr = array("you", 2, 3);
tranlate_js($arr, "shit"); // var shit = $array
console.log(shit);

php调用js方法

function my_log(a)
{
console.log(a);
}
$str = "'you'";
echo "my_log(" . $str . ");";