> 백엔드 개발 > PHP 튜토리얼 > php生成伪静态解决方法

php生成伪静态解决方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
풀어 주다: 2016-06-13 13:53:03
원래의
1253명이 탐색했습니다.

php生成伪静态
那位老兄有生成php伪静态的代码?让我看看哦。先在此谢谢啦

------解决方案--------------------
这个是ecshop的伪静态生成代码

PHP code

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

/**

 * 重写 URL 地址

 *

 * @access  public

 * @param   string  $app    执行程序

 * @param   array   $params 参数数组

 * @param   string  $append 附加字串

 * @param   integer $page   页数

 * @return  void

 */

function build_uri($app, $params, $append = '', $page = 0, $size = 0)

{

    static $rewrite = NULL;

    $append = str_replace(':',' ',$append);

    $append = str_replace('/',' ',$append);

    $append = str_replace('?',' ',$append);

    $append = str_replace('?',' ',$append);

    $append = str_replace('“',' ',$append);

    $append = str_replace('”',' ',$append);

    $append = str_replace(':',' ',$append);

    $append = str_replace('#',' ',$append);

    $append = str_replace(',',' ',$append);

    $append = str_replace('=',' ',$append);

    $append = str_replace(')',' ',$append);

    $append = str_replace(')',' ',$append);

    $append = str_replace('(',' ',$append);

    $append = str_replace('(',' ',$append);

    $append = str_replace('!',' ',$append);

    $append = str_replace('\\',' ',$append);

    $append = str_replace('…',' ',$append);

    $append = str_replace('.',' ',$append);

    $append = str_replace('。',' ',$append);

    $append = preg_replace('/(\s+)/', '-', $append);

    //exit;

    if ($rewrite === NULL)

    {

        $rewrite = intval($GLOBALS['_CFG']['rewrite']);

    }

 

    $args = array('cid'   => 0,

                  'gid'   => 0,

                  'bid'   => 0,

                  'acid'  => 0,

                  'aid'   => 0,

                  'sid'   => 0,

                  'gbid'  => 0,

                  'auid'  => 0,

                  'sort'  => '',

                  'order' => '',

                );

 

    extract(array_merge($args, $params));

 

    $uri = '';

    switch ($app)

    {

        case 'category':

            if (empty($cid))

            {

                return false;

            }

            else

            {

                if ($rewrite)

                {

                    $uri = 'category-' . $cid;

                    if (isset($bid))

                    {

                        $uri .= '-b' . $bid;

                    }

                    if (isset($price_min))

                    {

                        $uri .= '-min'.$price_min;

                    }

                    if (isset($price_max))

                    {

                        $uri .= '-max'.$price_max;

                    }

                    if (isset($filter_attr))

                    {

                        $uri .= '-attr' . urlencode($filter_attr);

                    }

                    if (!empty($page))

                    {

                        $uri .= '-' . $page;

                    }

                    if (!empty($sort))

                    {

                        $uri .= '-' . $sort;

                    }

                    if (!empty($order))

                    {

                        $uri .= '-' . $order;

                    }

                }

                else

                {

                    $uri = 'category.php?id=' . $cid;

                    if (!empty($bid))

                    {

                        $uri .= '&brand=' . $bid;

                    }

                    if (isset($price_min))

                    {

                        $uri .= '&price_min=' . $price_min;

                    }

                    if (isset($price_max))

                    {

                        $uri .= '&price_max=' . $price_max;

                    }

                    if (isset($filter_attr))

                    {

                        $uri .='&filter_attr=' . urlencode($filter_attr);

                    }

 

                    if (!empty($page))

                    {

                        $uri .= '&page=' . $page;

                    }

                    if (!empty($sort))

                    {

                        $uri .= '&sort=' . $sort;

                    }

                    if (!empty($order))

                    {

                        $uri .= '&order=' . $order;

                    }

                }

            }

 

            break;

        case 'goods':

            if (empty($gid))

            {

                return false;

            }

            else

            {

                $uri = $rewrite ? 'DVD-' . $gid : 'goods.php?id=' . $gid;

            }

 

            break;

        case 'brand':

            if (empty($bid))

            {

                return false;

            }

            else

            {

                if ($rewrite)

                {

                    $uri = 'brand-' . $bid;

                    if (isset($cid))

                    {

                        $uri .= '-c' . $cid;

                    }

                    if (!empty($page))

                    {

                        $uri .= '-' . $page;

                    }

                    if (!empty($sort))

                    {

                        $uri .= '-' . $sort;

                    }

                    if (!empty($order))

                    {

                        $uri .= '-' . $order;

                    }

                }

                else

                {

                    $uri = 'brand.php?id=' . $bid;

                    if (!empty($cid))

                    {

                        $uri .= '&cat=' . $cid;

                    }

                    if (!empty($page))

                    {

                        $uri .= '&page=' . $page;

                    }

                    if (!empty($sort))

                    {

                        $uri .= '&sort=' . $sort;

                    }

                    if (!empty($order))

                    {

                        $uri .= '&order=' . $order;

                    }

                }

            }

 

            break;

        case 'article_cat':

            if (empty($acid))

            {

                return false;

            }

            else

            {

                if ($rewrite)

                {

                    $uri = 'article_cat-' . $acid;

                    if (!empty($page))

                    {

                        $uri .= '-' . $page;

                    }

                    if (!empty($sort))

                    {

                        $uri .= '-' . $sort;

                    }

                    if (!empty($order))

                    {

                        $uri .= '-' . $order;

                    }

                }

                else

                {

                    $uri = 'article_cat.php?id=' . $acid;

                    if (!empty($page))

                    {

                        $uri .= '&page=' . $page;

                    }

                    if (!empty($sort))

                    {

                        $uri .= '&sort=' . $sort;

                    }

                    if (!empty($order))

                    {

                        $uri .= '&order=' . $order;

                    }

                }

            }

 

            break;

        case 'article':

            if (empty($aid))

            {

                return false;

            }

            else

            {

                $uri = $rewrite ? 'article-' . $aid : 'article.php?id=' . $aid;

            }

 

            break;

        case 'group_buy':

            if (empty($gbid))

            {

                return false;

            }

            else

            {

                $uri = $rewrite ? 'group_buy-' . $gbid : 'group_buy.php?act=view&id=' . $gbid;

            }

 

            break;

        case 'auction':

            if (empty($auid))

            {

                return false;

            }

            else

            {

                $uri = $rewrite ? 'auction-' . $auid : 'auction.php?act=view&id=' . $auid;

            }

 

            break;

        case 'snatch':

            if (empty($sid))

            {

                return false;

            }

            else

            {

                $uri = $rewrite ? 'snatch-' . $sid : 'snatch.php?id=' . $sid;

            }

 

            break;

        case 'search':

            break;

        default:

            return false;

            break;

    }

 

    if ($rewrite)

    {

        if ($rewrite == 2 && !empty($append))

        {

            if ($app == 'goods')

            {

                 $uri = urlencode(preg_replace('/[\.|\/|\?|&|\+|\\\|\'|"|,]+/', '', $append)).'-'.$uri;

            }else{

                 $uri .= '-' . urlencode(preg_replace('/[\.|\/|\?|&|\+|\\\|\'|"|,]+/', '', $append));

            }

        }

 

        $uri .= '.html';

    }

    if (($rewrite == 2) && (strpos(strtolower(EC_CHARSET), 'utf') !== 0))

    {

        $uri = urlencode($uri);

    }

    return $uri;

}

 <div class="clear">

                  

               

               

         

            </div>

로그인 후 복사
관련 라벨:
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿