Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOOD
·
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
whb
10 years ago
Commit
72e44c9ab3fc55236e915a41ecc0d72773f74ded
1 parent
bb9f9e36
修改bug
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
website/lib/utils/StringHelper.class.php
website/view/script/brand/detail.php
website/view/widget/news/list.php
website/lib/utils/StringHelper.class.php
View file @
72e44c9
...
...
@@ -755,7 +755,8 @@ class Lib_Utils_StringHelper
{
$l
=
$l
-
$tmp
;
}
return
mb_substr
(
$string
,
0
,
$l
,
'utf-8'
)
.
$etc
;
//保证不会出现乱码
$str
=
mb_substr
(
$string
,
0
,
$l
,
'utf-8'
);
//保证不会出现乱码
return
$str
==
$string
?
$str
:
$str
.
$etc
;
}
/**
...
...
website/view/script/brand/detail.php
View file @
72e44c9
...
...
@@ -20,7 +20,7 @@
<div class="
layout
-
item
tiled
">
<div class="
image
-
box
">
<a href="
<?
php
echo
url
(
'news/detail'
,
array
(
'id'
=>
$val
[
'id'
]))
?>
" title="
<?php
echo
$val
[
'title'
]
?>
" target="_blank">
<img
src=
"
<?php
echo
Lib_Images
::
getImageUrl
(
$val
[
'thumb'
],
'0230x0230'
,
'fragmentimg'
);
?>
"
alt=
""
style=
"height:230px;width:230px;"
>
<img
src=
"
<?php
echo
Lib_Images
::
getImageUrl
(
$val
[
'thumb'
],
'0230x0230'
,
'fragmentimg'
);
?>
"
alt=
""
>
<?php
if
(
trim
(
$val
[
'tag'
])
==
'视频'
)
:?>
<
i
class
="
play
-
icon
"></i>
<?php endif;?>
...
...
website/view/widget/news/list.php
View file @
72e44c9
...
...
@@ -3,6 +3,7 @@ $title = Util_StringHelper::substr_cn($news['title'], 90);
$description
=
Lib_Utils_StringHelper
::
substr_full_en
(
Lib_Utils_StringHelper
::
stripTags
(
$news
[
'content'
]),
80
);
$height
=
$width
=
0
;
$thumb_size
=
json_decode
(
$news
[
'thumb_size'
],
true
);
$video
=
isset
(
$video
)
?
$video
:
0
;
if
(
$news
[
'thumb'
])
{
$thumb
=
Lib_Images
::
getImageUrl
(
$news
[
'thumb'
],
'source'
,
'fragmentimg'
);
...
...
@@ -27,7 +28,11 @@ $width = 308;
</div>
<div
class=
"content"
>
<h2
<?php
echo
$news
[
'main_title_type'
]
==
1
?
'class="volupia"'
:
''
;
?>
>
<a
href=
"
<?php
echo
url
(
'news/detail'
,
array
(
'id'
=>
$news
[
'id'
]))
?>
"
target=
"_blank"
>
<?php
echo
$news
[
'title'
];
?>
</a>
<a
href=
"
<?php
echo
url
(
'news/detail'
,
array
(
'id'
=>
$news
[
'id'
]))
?>
"
target=
"_blank"
>
<?php
echo
$video
?
Lib_Utils_StringHelper
::
substr_full_en
(
$news
[
'title'
],
88
)
:
$news
[
'title'
];
?>
</a>
</h2>
<p
class=
"text-content"
><a
href=
"
<?php
echo
url
(
'news/detail'
,
array
(
'id'
=>
$news
[
'id'
]))
?>
"
target=
"_blank"
>
<?php
echo
$description
;
?>
</a></p>
<p
class=
"time"
>
<?php
echo
date
(
'Y.m.d'
,
$news
[
'create_time'
]);
?>
</p>
...
...
Please
register
or
login
to post a comment