Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
周少峰
9 years ago
Commit
03a264d666b9c5feb8bdc0ced66a59a06ba2dc01
1 parent
7c5f39f1
搜索词高亮
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
library/WebPlugin/HelperSearch.php
library/WebPlugin/HelperSearch.php
View file @
03a264d
...
...
@@ -169,6 +169,7 @@ class HelperSearch
$gender
=
isset
(
self
::
$options
[
'gender'
])
?
explode
(
','
,
self
::
$options
[
'gender'
])[
0
]
:
0
;
foreach
(
$val
[
'goods_list'
]
as
$k
=>
$v
){
$goods_list
[
$k
][
'url'
]
=
Helpers
::
getUrlBySkc
(
$val
[
'product_id'
],
$v
[
'goods_id'
],
$val
[
'cn_alphabet'
]);
//女封
if
(
isset
(
$v
[
'cover_1'
])
&&
$gender
==
1
)
{
...
...
@@ -187,7 +188,15 @@ class HelperSearch
if
(
!
empty
(
$val
[
'default_images'
]))
{
$val
[
'default_images'
]
=
Images
::
getImageUrl
(
$val
[
'default_images'
],
$imgSize
[
0
],
$imgSize
[
1
]);
}
//搜索关键字高亮
$patten
=
"/"
.
self
::
$params
[
'query'
]
.
"/i"
;
if
(
isset
(
self
::
$params
[
'query'
])
&&
!
empty
(
self
::
$params
[
'query'
])
&&
preg_match
(
$patten
,
$val
[
'product_name'
],
$match
))
{
foreach
(
$match
as
$k
=>
&
$v
)
{
$replace
[
$k
]
=
'<span style="color: #cc0000">'
.
$v
.
'</span>'
;
$v
=
'/'
.
$v
.
'/'
;
}
$val
[
'product_name'
]
=
preg_replace
(
$match
,
$replace
,
$val
[
'product_name'
]);
}
$good
=
array
(
'tags'
=>
array
(
'isNew'
=>
$isNew
,
...
...
Please
register
or
login
to post a comment