Skip to content

Instantly share code, notes, and snippets.

View GHJayce's full-sized avatar
😆

Jayce GHJayce

😆
View GitHub Profile
@GHJayce
GHJayce / php
Created September 4, 2022 08:48
php zip operate
<?php
$filePath = '/Users/jayce/Desktop/test.zip';
$archive = \new ZipArchive();
$archive->open($filePath);
$archive->extraceTo($saveDirPath);
$archive->close();
@GHJayce
GHJayce / vue
Created September 13, 2022 08:37
template extends
// 父组件
<template>
<div class="hello">
父类:{{name}}
<span>{{title}}</span>
</div>
</template>
<script>
export default {