This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cacheName = 'notenrechnerjk829829328931'; | |
var filesToCache = [ | |
'/notenRechner/', | |
'/notenRechner/manifest.json', | |
'/notenRechner/index.html', | |
'/notenRechner/libs/material.min.js', | |
'/notenRechner/libs/material.min.css', | |
'/notenRechner/js/app.js', | |
'/notenRechner/styles/main.css', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>title</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
</head> | |
<body> | |
<h1>Hello, world</h1> | |
<script> | |
if ('serviceWorker' in navigator) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Basic Product Information --> | |
{G:ID} | |
{G:TITLE} | |
{G:LINK} | |
{G:DESCRIPTION} | |
{G:GOOGLE_PRODUCT_CATEGORY} | |
{G:PRODUCT_TYPE,[10]} | |
{G:IMAGE_LINK} | |
<g:condition>new</g:condition> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function test($geschlecht) { | |
$gender=$geschlecht; | |
$gExploded = explode(",", $gender); | |
return str_replace("Männer", "male", str_replace("Frauen", "female",str_replace("Unisex", "unisex", $gExploded[0]))); | |
} | |
var_dump(test("Männer, Frauen")); | |
var_dump(test("Männer")); |
NewerOlder