タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

debugとvimに関するseckieのブックマーク (2)

  • vimでPHPのデバッグ

    vim+プラグイン(remote PHP debugger)+xdebugの環境をつくることで、vimPHPのデバッグを行うことができるようになります。 今回は環境構築と、デバッグ方法を簡単に紹介したいと思います。 【環境構築】 今回は以下の環境に、デバッグ環境を構築してみました。 ・CentOS 5.2 ・vim 7.0 ・PHP 5.2.6 以下のコマンドでxdebugをインストールします。 #pecl install xdebug インストール完了後、php.iniに以下の設定を加えます。 ————————————————— [zend] zend_extension=”/usr/lib/php/modules/xdebug.so” xdebug.remote_enable=On xdebug.remote_host=localhost ————————————————— その後設

  • Remote Debugging PHP with VIM and XDebug

    Many php developers enjoy outputting debugging information using functions such as var_dump during the development process, but sometimes it’s not effective if the program logic is complex or if you want to step through code line by line. To console debugging information, we have to manually add debug statements in our code, this is really a waste of time. Fortunately, there is a useful php extens

    Remote Debugging PHP with VIM and XDebug
  • 1