Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

search_ignore_words.php

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 2.61 KiB


001  <?php
002  /**
003  *
004  * This file is part of the phpBB Forum Software package.
005  *
006  * @copyright (c) phpBB Limited <https://www.phpbb.com>
007  * @license GNU General Public License, version 2 (GPL-2.0)
008  *
009  * For full copyright and license information, please see
010  * the docs/CREDITS.txt file.
011  *
012  */
013   
014  if (!defined('IN_PHPBB'))
015  {
016      exit;
017  }
018   
019  $words = array(
020      'a',
021      'about',
022      'after',
023      'ago',
024      'all',
025      'almost',
026      'along',
027      'alot',
028      'also',
029      'am',
030      'an',
031      'and',
032      'answer',
033      'any',
034      'anybody',
035      'anybodys',
036      'anywhere',
037      'are',
038      'arent',
039      'around',
040      'as',
041      'ask',
042      'askd',
043      'at',
044      'bad',
045      'be',
046      'because',
047      'been',
048      'before',
049      'being',
050      'best',
051      'better',
052      'between',
053      'big',
054      'btw',
055      'but',
056      'by',
057      'can',
058      'cant',
059      'come',
060      'could',
061      'couldnt',
062      'day',
063      'days',
064      'days',
065      'did',
066      'didnt',
067      'do',
068      'does',
069      'doesnt',
070      'dont',
071      'down',
072      'each',
073      'etc',
074      'either',
075      'else',
076      'even',
077      'ever',
078      'every',
079      'everybody',
080      'everybodys',
081      'everyone',
082      'far',
083      'find',
084      'for',
085      'found',
086      'from',
087      'get',
088      'go',
089      'going',
090      'gone',
091      'good',
092      'got',
093      'gotten',
094      'had',
095      'has',
096      'have',
097      'havent',
098      'having',
099      'her',
100      'here',
101      'hers',
102      'him',
103      'his',
104      'home',
105      'how',
106      'hows',
107      'href',
108      'I',
109      'Ive',
110      'if',
111      'in',
112      'ini',
113      'into',
114      'is',
115      'isnt',
116      'it',
117      'its',
118      'its',
119      'just',
120      'know',
121      'large',
122      'less',
123      'like',
124      'liked',
125      'little',
126      'looking',
127      'look',
128      'looked',
129      'looking',
130      'lot',
131      'maybe',
132      'many',
133      'me',
134      'more',
135      'most',
136      'much',
137      'must',
138      'mustnt',
139      'my',
140      'near',
141      'need',
142      'never',
143      'new',
144      'news',
145      'no',
146      'none',
147      'not',
148      'nothing',
149      'now',
150      'of',
151      'off',
152      'often',
153      'old',
154      'on',
155      'once',
156      'only',
157      'oops',
158      'or',
159      'other',
160      'our',
161      'ours',
162      'out',
163      'over',
164      'page',
165      'please',
166      'put',
167      'question',
168      'questions',
169      'questioned',
170      'quote',
171      'rather',
172      'really',
173      'recent',
174      'said',
175      'saw',
176      'say',
177      'says',
178      'she',
179      'see',
180      'sees',
181      'should',
182      'sites',
183      'small',
184      'so',
185      'some',
186      'something',
187      'sometime',
188      'somewhere',
189      'soon',
190      'take',
191      'than',
192      'true',
193      'thank',
194      'that',
195      'thatd',
196      'thats',
197      'the',
198      'their',
199      'theirs',
200      'theres',
201      'theirs',
202      'them',
203      'then',
204      'there',
205      'these',
206      'they',
207      'theyll',
208      'theyd',
209      'theyre',
210      'this',
211      'those',
212      'though',
213      'through',
214      'thus',
215      'time',
216      'times',
217      'to',
218      'too',
219      'under',
220      'until',
221      'untrue',
222      'up',
223      'upon',
224      'use',
225      'users',
226      'version',
227      'very',
228      'via',
229      'want',
230      'was',
231      'way',
232      'we',
233      'well',
234      'went',
235      'were',
236      'werent',
237      'what',
238      'when',
239      'where',
240      'which',
241      'who',
242      'whom',
243      'whose',
244      'why',
245      'wide',
246      'will',
247      'with',
248      'within',
249      'without',
250      'wont',
251      'world',
252      'worse',
253      'worst',
254      'would',
255      'wrote',
256      'www',
257      'yes',
258      'yet',
259      'you',
260      'youd',
261      'youll',
262      'your',
263      'youre',
264      'yours',
265      'AFAIK',
266      'IIRC',
267      'LOL',
268      'ROTF',
269      'ROTFLMAO',
270      'YMMV',
271  );
272