jQuery-like interface for PHP?

前端 未结 12 1782
猫巷女王i
猫巷女王i 2020-12-04 13:44

I was curious as to whether or not there exists a jQuery-style interface/library for PHP for handling HTML/XML files -- specifically using jQuery style selectors.

I\

12条回答
  •  独厮守ぢ
    2020-12-04 13:53

    my alternative is https://github.com/gymadarasz/xparser

    fast and easy to use, an example:

    $x('#nav a', function($elem) {
      $elem->href = '//myurl/' . $elem->href;
    });
    

提交回复
热议问题