php xpath 按字段字母顺序排序

发布于 2024-10-30 23:26:18 字数 717 浏览 1 评论 0原文

我想要对 xpath 进行更准确的字母排序。我当前的系统仅对字段的前两个字符进行排序...如果可能的话,我希望对整个字段进行排序。

foreach(range('A','Z') AS $firstletter) {
     foreach(range('a','z') AS $secondletter) {
              $letters = $firstletter.$secondletter;
              if($item->xpath("/Entries
                                  /Entry[
                                     starts-with(
                                        Field42,
                                        '".$letters."'
                                     )
                                   and 
                                     Field380 = 'Okay'
                                  ]")) {

Field42 条目是姓氏(即 Brown、Brownstein、Brownwood、Byrnes 等)

I'd like to have a more accurate alphabetical sort for xpath. My current system only sorts the first two characters of the field... I'd like it the order the whole field if possible.

foreach(range('A','Z') AS $firstletter) {
     foreach(range('a','z') AS $secondletter) {
              $letters = $firstletter.$secondletter;
              if($item->xpath("/Entries
                                  /Entry[
                                     starts-with(
                                        Field42,
                                        '".$letters."'
                                     )
                                   and 
                                     Field380 = 'Okay'
                                  ]")) {

The Field42 entries are lastnames (ie Brown, Brownstein, Brownwood, Byrnes,..)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守不住的情 2024-11-06 23:26:18

我认为您无法使用 XPath 进行排序(其目标是选择数据,而不是对其进行排序)。

那么,为什么不在纯 PHP 中执行此操作:

  • 首先,将所有节点加载到 PHP 数组中
  • ,然后使用 PHP 提供的函数之一对该数组进行排序

I don't think you'll be able to sort using XPath (its goal being to select data -- not sort it).

So, why not do it in pure-PHP :

  • First, load all of your nodes to a PHP array
  • And, then, sort that array using one of the functions provided by PHP
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文