A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

text_functions.php 293B

123456789101112
  1. <?php
  2. function highlight_search_terms($result, $search_term){
  3. $search_array = explode(" ", $search_term);
  4. foreach ($search_array as $term) {
  5. $replacement = "<span class='search_term'>$term</span>";
  6. $result = str_ireplace($term, $replacement, $result);
  7. }
  8. return $result;
  9. }
  10. ?>