コード例 #1
0
ファイル: Link.php プロジェクト: codexproject/core
 public function href($href = null)
 {
     if ($href !== null) {
         $this->node->setAttribute('href', $href);
     }
     return $this->node->getAttribute('href');
 }
コード例 #2
0
 public function testSetAttribute()
 {
     $node = new HtmlNode('a');
     $node->setAttribute('class', 'foo');
     $this->assertEquals('foo', $node->getAttribute('class'));
 }