Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
9e3742ab
Commit
9e3742ab
authored
Feb 05, 2018
by
hujun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
根据省市区名字,查找对应的code
parent
6b674963
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
Regions.php
application/model/Regions.php
+27
-0
No files found.
application/model/Regions.php
View file @
9e3742ab
...
...
@@ -36,4 +36,31 @@ class Regions extends Model
return
$data
;
}
/**
* 根据省市区名字,查找对应的code
*
* @param $province
* @param string $city
* @param string $disc
* @return mixed
*/
public
function
getRegionsCodeByName
(
$province
,
$city
=
''
,
$disc
=
''
)
{
if
(
$province
)
{
$result
[
'province_code'
]
=
$this
->
where
(
'parentCode'
,
100000
)
->
where
(
'name'
,
'LIKE'
,
$province
.
'%'
)
->
value
(
'code'
);
if
(
$result
[
'province_code'
]
&&
$city
)
{
$result
[
'city_code'
]
=
$this
->
where
(
'parentCode'
,
$result
[
'province_code'
])
->
where
(
'name'
,
'LIKE'
,
$city
.
'%'
)
->
value
(
'code'
);
if
(
$disc
)
{
$result
[
'disc_code'
]
=
$this
->
where
(
'parentCode'
,
$result
[
'city_code'
])
->
where
(
'name'
,
'LIKE'
,
$disc
.
'%'
)
->
value
(
'code'
);
}
}
}
return
$result
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment