私がやろうとしている...
<?php $content = `echo 'h1 happy days' | jade`; ?>
しかし、それは何も返しません。他のコマンドは(例えばls
)
パスにjadeを追加して/bin
、コマンドラインからは機能するがphp内からは機能しないリンクを作成してみました。
私は何が間違っているのですか?
編集:
コマンドラインから:
bash-3.2$ pwd
/Users/billy/test/website-clear
bash-3.2$ echo 'h1 happy days' | jade
<h1>happy days</h1>bash-3.2$ which jade
/bin/jade
bash-3.2$