Fork me on GitHub

Php Code CompletionΒΆ

Php code completion uses the standard Vim code completion mechanism like so:

<?php
class Test {
  function getName () {
  }
  function getValue () {
  }
}

$test = new Test();

$test->get<C-X><C-U>
$test->getName()
?>